|
Ubicación en el Menú |
---|
Croquis → Rectángulo |
Entornos de trabajo |
Croquis, Arquitectura |
Atajo de teclado por defecto |
R E |
Introducido en versión |
0.7 |
Ver también |
Cubo |
Esta herramienta dibuja un Rectángulo indicando dos puntos de su diagonal.
La herramienta rectángulo crea un rectángulo indicando dos puntos de su diagonal. Toma el espesor de línea y color previamente definidos en la Barra de herramientas de la bandeja de tiro. Opcionalmente, puede agregar un chaflán de 45 grados o un filete circular a cada esquina del rectángulo, y puede dividir el rectángulo en una serie de filas y / o columnas de igual tamaño.
The corners of a Draft Rectangle can be filleted (rounded) or chamfered by changing its DatosFillet Radius or DatosChamfer Size respectively. It is also possible to subdivide a Draft Rectangle by changing its DatosColumns and/or DatosRows property.
See also: Draft Tray, Draft Snap and Draft Constrain.
The single character keyboard shortcuts available in the task panel can be changed. See Draft Preferences. The shortcuts mentioned here are the default shortcuts (for version 1.0).
See also: Preferences Editor and Draft Preferences.
+
See also: Property editor.
A Draft Rectangle object is derived from a Part Part2DObject and inherits all its properties. It also has the following additional properties:
Draft
Area
): (read-only) specifies the area of the face of the rectangle. The value will be 0.0
if DatosMake Face if false
.Length
): specifies the length of the chamfers at the corners of the rectangle.Integer
): specifies the number of equal-sized columns in which the rectangle is divided.Length
): specifies the radius of the fillets at the corners of the rectangle.Distance
): specifies the height of the rectangle.Distance
): specifies the length of the rectangle.Bool
): specifies if the rectangle makes a face or not. If it is true
a face is created, otherwise only the perimeter is considered part of the object.Integer
): specifies the number of equal-sized rows in which the rectangle is divided.Draft
Enumeration
): specifies the Draft Pattern with which to fill the face of the rectangle. This property only works if DatosMake Face is true
and if VistaDisplay Mode is Flat Lines
.Float
): specifies the size of the Draft Pattern.File
): specifies the path of the image file to be mapped onto the face of the rectangle. Blanking this property will remove the image. The rectangle should have the same proportions as the image to avoid distortions.La herramienta rectángulo puede utilizarse en macros y desde la consola de Python utilizando la siguiente función:
To create a Draft Rectangle use the make_rectangle
method (introduced in version 0.19) of the Draft module. This method replaces the deprecated makeRectangle
method.
rectangle = make_rectangle(length, height, placement=None, face=None, support=None)
Rectangle
con longitud length
en dirección X y altura height
en dirección Y.Ejemplo:
import FreeCAD as App
import Draft
doc = App.newDocument()
rectangle1 = Draft.make_rectangle(4000, 1000)
rectangle2 = Draft.make_rectangle(1000, 4000)
zaxis = App.Vector(0, 0, 1)
p3 = App.Vector(1000, 1000, 0)
place3 = App.Placement(p3, App.Rotation(zaxis, 45))
rectangle3 = Draft.make_rectangle(3500, 250, placement=place3)
doc.recompute()